home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / comm / mail / Mutt089src.lha / Mutt-0.89i-AMIGA / src / mutt.h < prev    next >
C/C++ Source or Header  |  1998-01-28  |  13KB  |  447 lines

  1. /*
  2.  * Copyright (C) 1996-8 Michael R. Elkins <me@cs.hmc.edu>
  3.  * 
  4.  *     This program is free software; you can redistribute it and/or modify
  5.  *     it under the terms of the GNU General Public License as published by
  6.  *     the Free Software Foundation; either version 2 of the License, or
  7.  *     (at your option) any later version.
  8.  * 
  9.  *     This program is distributed in the hope that it will be useful,
  10.  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *     GNU General Public License for more details.
  13.  * 
  14.  *     You should have received a copy of the GNU General Public License
  15.  *     along with this program; if not, write to the Free Software
  16.  *     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  */ 
  18.  
  19. #include "config.h"
  20.  
  21. #include <stdio.h>
  22. #include <sys/types.h>
  23. #include <time.h>
  24. #include <limits.h>
  25. #include <stdarg.h>
  26.  
  27. #include "rfc822.h"
  28. #include "list.h"
  29.  
  30. #define TRUE 1
  31. #define FALSE 0
  32.  
  33. #define HUGE_STRING    5120
  34. #define LONG_STRING     1024
  35. #define STRING          256
  36. #define SHORT_STRING    128
  37.  
  38. /* flags for mutt_copy_header() */
  39. #define CH_UPDATE    1      /* update the status and x-status fields? */
  40. #define CH_WEED        (1<<1) /* weed the headers? */
  41. #define CH_DECODE    (1<<2) /* do RFC1522 decoding? */
  42. #define CH_XMIT        (1<<3) /* transmitting this message? */
  43. #define CH_FROM        (1<<4) /* retain the "From " message separator? */
  44. #define CH_PREFIX    (1<<5) /* use Prefix string? */
  45. #define CH_NOSTATUS    (1<<6) /* supress the status and x-status fields */
  46. #define CH_REORDER    (1<<7) /* Re-order output of headers */
  47. #define CH_NONEWLINE    (1<<8) /* don't output terminating newline */
  48. #define CH_MIME        (1<<9) /* ignore MIME fields */
  49. #define CH_UPDATE_LEN    (1<<10) /* update Lines: and Content-Length: */
  50.  
  51. /* flags for mutt_enter_string() */
  52. #define  M_ALIAS 1      /* do alias "completion" by calling up the alias-menu */
  53. #define  M_FILE  (1<<1) /* do file completion */
  54. #define  M_EFILE (1<<2) /* do file completion, plus incoming folders */
  55. #define  M_CMD   (1<<3) /* do completion on previous word */
  56. #define  M_PASS  (1<<4) /* password mode (no echo) */
  57. #define  M_CLEAR (1<<5) /* clear input if printable character is pressed */
  58.  
  59. /* flags for mutt_extract_token() */
  60. #define M_EQUAL        1    /* treat '=' as a special */
  61. #define M_CONDENSE    (1<<1)    /* ^(char) to control chars (macros) */
  62. #define M_SPACE        (1<<2)  /* don't treat whitespace as a terminator */
  63. #define M_QUOTE        (1<<3)    /* don't interpret quotes */
  64. #define M_BACKSLASH    (1<<4)  /* don't interpret `\' sequences */
  65. #define M_PATTERN    (1<<5)    /* !)|~ are terminators (for patterns) */
  66. #define M_COMMENT    (1<<6)    /* don't reap comments */
  67. #define M_NULL        (1<<7)  /* don't return NULL when \0 is reached */
  68.  
  69. /* flags for _mutt_system() */
  70. #define M_DETACH_PROCESS    1    /* detach subprocess from group */
  71.  
  72. /* flags for _mutt_make_string() */
  73. #define M_FORCESUBJ    (1<<0) /* print the subject even if it didn't change */
  74. #define M_TREE        (1<<1) /* draw the thread tree */
  75.  
  76. enum
  77. {
  78.   /* types for mutt_add_hook() */
  79.   M_FOLDERHOOK = 1,
  80.   M_SAVEHOOK,
  81.   M_MBOXHOOK,
  82.   M_SENDHOOK,
  83.   M_FCCHOOK,
  84.  
  85.   /* modes for mutt_view_attachment() */
  86.   M_REGULAR,
  87.   M_MAILCAP,
  88.   M_AS_TEXT,
  89.  
  90.   /* action codes used by mutt_set_flag() and mutt_pattern_function() */
  91.   M_ALL,
  92.   M_NONE,
  93.   M_NEW,
  94.   M_OLD,
  95.   M_REPLIED,
  96.   M_READ,
  97.   M_UNREAD,
  98.   M_DELETE,
  99.   M_UNDELETE,
  100.   M_DELETED,
  101.   M_FLAG,
  102.   M_TAG,
  103.   M_UNTAG,
  104.   M_LIMIT,
  105.  
  106.   /* actions for mutt_pattern_comp/mutt_pattern_exec */
  107.   M_AND,
  108.   M_OR,
  109.   M_TO,
  110.   M_CC,
  111.   M_SUBJECT,
  112.   M_FROM,
  113.   M_DATE,
  114.   M_DATE_RECEIVED,
  115.   M_ID,
  116.   M_BODY,
  117.   M_HEADER,
  118.   M_SENDER,
  119.   M_MESSAGE,
  120.  
  121.   /* Options for Mailcap lookup */
  122.   M_EDIT,
  123.   M_COMPOSE,
  124.   M_PRINT,
  125.   M_AUTOVIEW,
  126.  
  127.   /* Options for mutt_save_attachment */
  128.   M_SAVE_APPEND
  129. };
  130.  
  131. /* possible arguments to set_quadoption() */
  132. enum
  133. {
  134.   M_NO,
  135.   M_YES,
  136.   M_ASKNO,
  137.   M_ASKYES
  138. };
  139.  
  140. /* quad-option vars */
  141. enum
  142. {
  143.  
  144. #ifdef _PGPPATH
  145.   OPT_VERIFYSIG, /* verify PGP signatures */
  146. #endif
  147.  
  148.   OPT_USEMAILCAP,
  149.   OPT_PRINT,
  150.   OPT_INCLUDE,
  151.   OPT_DELETE,
  152.   OPT_MOVE,
  153.   OPT_COPY,
  154.   OPT_POSTPONE,
  155.   OPT_REPLYTO,
  156.   OPT_ABORT,
  157.   OPT_RECALL,
  158.   OPT_SUBJECT
  159. };
  160.  
  161. /* flags to ci_send_message() */
  162. #define SENDREPLY    (1<<0)
  163. #define SENDGROUPREPLY    (1<<1)
  164. #define SENDLISTREPLY    (1<<2)
  165. #define SENDFORWARD    (1<<3)
  166. #define SENDPOSTPONED    (1<<4)
  167. #define SENDBATCH    (1<<5)
  168. #define SENDMAILX    (1<<6)
  169. #define SENDKEY        (1<<7)
  170.  
  171. /* boolean vars */
  172. enum
  173. {
  174.   OPTPROMPTAFTER,
  175.   OPTSTATUSONTOP,
  176.   OPTALLOW8BIT,
  177.   OPTASCIICHARS,
  178.   OPTMETOO,
  179.   OPTEDITHDRS,
  180.   OPTARROWCURSOR,
  181.   OPTASKCC,
  182.   OPTHEADER,
  183.   OPTREVALIAS,
  184.   OPTREVNAME,
  185.   OPTFORCENAME,
  186.   OPTSAVEEMPTY,
  187.   OPTPAGERSTOP,
  188.   OPTSIGDASHES,
  189.   OPTASKBCC,
  190.   OPTAUTOEDIT,
  191. #ifdef _PGPPATH
  192.   OPTPGPAUTOSIGN,
  193.   OPTPGPAUTOENCRYPT,
  194.   OPTPGPLONGIDS,
  195.   OPTPGPREPLYENCRYPT,
  196.   OPTPGPREPLYSIGN,
  197.   OPTPGPENCRYPTSELF,
  198.   OPTPGPSTRICTENC,
  199. #endif
  200.   OPTMARKOLD,
  201.   OPTCONFIRMCREATE,
  202.   OPTCONFIRMAPPEND,
  203.   OPTPOPDELETE,
  204.   OPTSAVENAME,
  205.   OPTTHOROUGHSRC,
  206.   OPTTILDE,
  207.   OPTMIMEFWD,
  208.   OPTMARKERS,
  209.   OPTFCCATTACH,
  210.   OPTATTACHSPLIT,
  211.   OPTPIPESPLIT,
  212.   OPTPIPEDECODE,
  213.   OPTREADONLY,
  214.   OPTRESOLVE,
  215.   OPTSTRICTTHREADS,
  216.   OPTAUTOTAG,
  217.   OPTBEEP,
  218.   OPTHELP,
  219.   OPTHDRS,
  220.   OPTWEED,
  221.   OPTWRAP,
  222.   OPTCHECKNEW,
  223.   OPTFASTREPLY,
  224.   OPTWAITKEY,
  225.   OPTIGNORELISTREPLYTO,
  226.   OPTSAVEADDRESS,
  227.   OPTSUSPEND,
  228.   OPTSORTRE,
  229.   OPTUSEDOMAIN,
  230.   OPTUSEFROM,
  231.   OPTUSE8BITMIME,
  232.   OPTFORWDECODE,
  233.   OPTFORWQUOTE,
  234.   OPTMENUSCROLL,    /* scroll menu instead of implicit next-page */
  235.   OPTFORCEREFRESH,    /* (pseudo) refresh even during macros */
  236.   OPTLOCALES,        /* (pseudo) set if user has valid locale definition */
  237.   OPTNOCURSES,        /* (pseudo) when sending in batch mode */
  238.   OPTNEEDREDRAW,    /* (pseudo) to notify caller of a submenu */
  239.   OPTSEARCHREVERSE,    /* (pseudo) used by ci_search_command */
  240.   OPTMSGERR,        /* (pseudo) used by mutt_error/mutt_message */
  241.   OPTSEARCHINVALID,    /* (pseudo) used to invalidate the search pat */
  242.   OPTSIGNALSBLOCKED,    /* (pseudo) using by mutt_block_signals () */
  243.   OPTNEEDRESORT,    /* (pseudo) used to force a re-sort */
  244.   OPTVIEWATTACH,    /* (pseudo) signals that we are viewing attachments */
  245.   OPTFORCEREDRAWINDEX,    /* (pseudo) used to force a redraw in the main index */
  246.   OPTFORCEREDRAWPAGER,    /* (pseudo) used to force a redraw in the pager */
  247.  
  248. #ifdef _PGPPATH
  249.   OPTPGPCHECKTRUST,    /* (pseudo) used by pgp_select_key () */
  250.   OPTDONTHANDLEPGPKEYS,    /* (pseudo) used to extract PGP keys */
  251. #endif
  252.  
  253.   OPTMAX
  254. };
  255.  
  256. #define mutt_bit_alloc(n) calloc ((n + 7) / 8, sizeof (char))
  257. #define mutt_bit_set(v,n) v[n/8] |= (1 << (n % 8))
  258. #define mutt_bit_unset(v,n) v[n/8] &= ~(1 << (n % 8))
  259. #define mutt_bit_toggle(v,n) v[n/8] ^= (1 << (n % 8))
  260. #define mutt_bit_isset(v,n) (v[n/8] & (1 << (n % 8)))
  261.  
  262. #define set_option(x) mutt_bit_set(Options,x)
  263. #define unset_option(x) mutt_bit_unset(Options,x)
  264. #define toggle_option(x) mutt_bit_toggle(Options,x)
  265. #define option(x) mutt_bit_isset(Options,x)
  266.  
  267. /* Bit fields for ``Signals'' */
  268. #define S_INTERRUPT (1<<1)
  269. #define S_SIGWINCH  (1<<2)
  270.  
  271. typedef struct alias
  272. {
  273.   char *name;
  274.   ADDRESS *addr;
  275.   struct alias *next;
  276. } ALIAS;
  277.  
  278. typedef struct envelope
  279. {
  280.   ADDRESS *return_path;
  281.   ADDRESS *from;
  282.   ADDRESS *to;
  283.   ADDRESS *cc;
  284.   ADDRESS *bcc;
  285.   ADDRESS *sender;
  286.   ADDRESS *reply_to;
  287.   ADDRESS *mail_followup_to;
  288.   char *subject;
  289.   char *real_subj;   /* offset of the real subject */
  290.   char *message_id;
  291.   LIST *references;  /* message references (in reverse order) */
  292.   LIST *userhdrs;    /* user defined headers */
  293. } ENVELOPE;
  294.  
  295. typedef struct parameter
  296. {
  297.   char *attribute;
  298.   char *value;
  299.   struct parameter *next;
  300. } PARAMETER;
  301.  
  302. /* Information that helps in determing the Content-* of an attachment */
  303. typedef struct content
  304. {
  305.   unsigned int space : 1;  /* whitespace at the end of lines? */
  306.   unsigned int binary : 1; /* long lines, or CR not in CRLF pair */
  307.   unsigned int from : 1;   /* has a line beginning with "From "? */
  308.   unsigned int dot : 1;    /* has a line consisting of a single dot? */
  309.   long hibin;              /* 8-bit characters */
  310.   long lobin;              /* unprintable 7-bit chars (eg., control chars) */
  311.   long ascii;              /* number of ascii chars */
  312.   long linemax;            /* length of the longest line in the file */
  313. } CONTENT;
  314.  
  315. typedef struct body
  316. {
  317.   unsi